home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 23.zip / BS1 part 23 / Scala v1.0 d1.adf / devs / mountlist2 < prev    next >
Text File  |  1989-11-21  |  3KB  |  131 lines

  1. /* An example MOUNTLIST file enabling a 5.25" disk to be mounted
  2.    as DF2: and an interactive serial port mounted as AUX:
  3. */
  4.  
  5. NEWCON:
  6.        Handler = l:Newcon-handler
  7.        Priority = 5
  8.        StackSize = 1000
  9. #
  10.  
  11.  
  12.  
  13. PIPE:
  14.      Handler = L:Pipe-Handler
  15.      StackSize = 6000
  16.      Priority = 5
  17.      GlobVec = -1
  18. #
  19.  
  20. /* If you only have 1 3.5" disk, change the name to DF1: and the Unit to 1 */
  21. DF2:      Device = trackdisk.device
  22.       Unit   = 2
  23.       Flags  = 1
  24.       Surfaces  = 2
  25.       BlocksPerTrack = 11
  26.       Reserved = 2
  27.       PreAlloc = 11
  28.       Interleave = 0
  29.       LowCyl = 0  ;  HighCyl = 39
  30.       Buffers = 5
  31.       BufMemType = 3
  32. #
  33. /* An example mount entry for preparing a hard disk for use
  34.    The hard disk is not included; this is only an example.
  35. */
  36.  
  37. RES0: Device = hddisk.device
  38.       Unit = 1
  39.       Flags = 0
  40.       Surfaces = 4
  41.       BlocksPerTrack = 17
  42.       Reserved = 2
  43.       Interleave = 0
  44.       LowCyl = 0
  45.       HighCyl = 1
  46.       Buffers = 1
  47.       BufMemType = 0
  48. #
  49.  
  50. DH0:  Device = hddisk.device
  51.       Unit   = 1
  52.       Flags  = 0
  53.       Surfaces  = 4
  54.       BlocksPerTrack = 17
  55.       Reserved = 2
  56.       Interleave = 0
  57.       LowCyl = 0
  58.       HighCyl = 3
  59.       Buffers = 1
  60.       BufMemType = 4
  61. #
  62.  
  63. FH1:      Device = hddisk.device
  64.       FileSystem = l:FastFileSystem
  65.       GlobVec = 1
  66.       DosType = 0x444F5301
  67.       Unit = 1
  68.       Flags= 0
  69.       Surfaces = 4
  70.       BlocksPerTrack = 17
  71.       Reserved = 2
  72.       Interleave = 0
  73.       LowCyl = 4
  74.       HighCyl = 611
  75.       Buffers = 20
  76.       BufMemType = 4
  77.       StackSize = 4000
  78. #
  79.  
  80.  
  81.  
  82. DH1:      Device = hddisk.device
  83.       Unit   = 2
  84.       Flags  = 0
  85.       Surfaces  = 4
  86.       BlocksPerTrack = 17
  87.       Reserved = 2
  88.       Interleave = 0
  89.       LowCyl = 0  ;  HighCyl = 3
  90.       Buffers = 1
  91.       BufMemType = 4
  92. #
  93.  
  94. FH2:      Device = hddisk.device
  95.       FileSystem = l:FastFileSystem
  96.       GlobVec = 1
  97.       DosType = 0x444F5301
  98.       Unit = 2
  99.       Flags = 0
  100.       Mount = 1
  101.       Surfaces = 4
  102.       BlocksPerTrack = 17
  103.       Reserved = 2
  104.       Interleave = 0
  105.       LowCyl = 4 ;  HighCyl = 611
  106.       Buffers = 20
  107.       BufMemType = 4
  108.       StackSize = 4000
  109. #
  110.  
  111.  
  112. /*  This is provided as an example of an alternative type of
  113.     non-filing device mount.  Please note that L:aux-handler
  114.     is not provided, and thus this mount does not work.
  115. */
  116.  
  117. AUX:      Handler = L:aux-handler
  118.       Stacksize = 700
  119.       Priority = 5
  120. #
  121. /* This is an example of a non-filing system mount using a handler written
  122.    in C.  The SPEAKER: device is not included on this disk, and is used as
  123.    and example only.
  124. */
  125.  
  126. SPEAKER:   Handler = L:s-handler
  127.       Stacksize = 1000
  128.       Priority = 5
  129.       GlobVec = 1
  130. #
  131.